html,
body {
  position: relative;
  height: 100%;
}
.title_project_list h1 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #242424;
  margin: 50px 0;
}
.swiper {
  width: 95%;
  height: 60%;
}
.card-project {
  width: 100%;
  height: 450px;
  background-color: #1e90ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  row-gap: 10px;
}

.content-image {
  position: relative;
  width: 100%;
  height: 70%;
  border-radius: 15px;
}
.content-image img {
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px 15px 0 0;
}
.card-project .content {
  width: 100%;
  height: 30%;
}
.card-project .content h4 {
  text-decoration: none;
  list-style: none;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}
.card-project .content p {
  font-size: 18px;
  font-weight: 400;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}
.button_moreproject {
  display: flex;
  align-items: center;
  justify-content: right;
}
.swiper-slide {
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  background: none;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-navBtn {
  color: #beddfd;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #1e90ff;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 40px;
}
.swiper-buton-next {
  right: 0;
}
.swiper-buton-prev {
  left: 0;
}
.swiper-pagination-bullet {
  background-color: #beddfd;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #1e90ff;
}
.swiper-pagination {
  padding-top: 10px;
}
@media (max-width: 576px) {
  .swiper {
    width: 90%;
  }
}
